unicode/utf8.acceptRange.hi (field)
11 uses
unicode/utf8 (current package)
utf8.go#L96: hi uint8 // highest value for second byte.
utf8.go#L121: if n > 1 && (p[1] < accept.lo || accept.hi < p[1]) {
utf8.go#L141: if n > 1 && (s[1] < accept.lo || accept.hi < s[1]) {
utf8.go#L191: if b1 < accept.lo || accept.hi < b1 {
utf8.go#L251: if s1 < accept.lo || accept.hi < s1 {
utf8.go#L500: if len(p) < 2 || p[1] < accept.lo || accept.hi < p[1] {
utf8.go#L505: if len(p) < 3 || p[1] < accept.lo || accept.hi < p[1] || p[2] < locb || hicb < p[2] {
utf8.go#L510: if len(p) < 4 || p[1] < accept.lo || accept.hi < p[1] || p[2] < locb || hicb < p[2] || p[3] < locb || hicb < p[3] {
utf8.go#L547: if len(s) < 2 || s[1] < accept.lo || accept.hi < s[1] {
utf8.go#L552: if len(s) < 3 || s[1] < accept.lo || accept.hi < s[1] || s[2] < locb || hicb < s[2] {
utf8.go#L557: if len(s) < 4 || s[1] < accept.lo || accept.hi < s[1] || s[2] < locb || hicb < s[2] || s[3] < locb || hicb < s[3] {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |